#Note that x is y is not the same thing as x==y
#For example
a=100
b=100
# a and b have the same value...
a==b
# ...but are not the same object...
a is b